iT邦幫忙

2021 iThome 鐵人賽

DAY 20
0
自我挑戰組

我要成為全端王!系列 第 20

全端入門Day20_前端程式撰寫之多一點的JavaScript

  • 分享至 

  • xImage
  •  

昨天介紹了ID跟class,今天要把button給弄好

JavaScript再次入門

JavaScript跟css一樣也有外部連結跟內部的,那我們先用內部連結來做示範,會比較簡單一點,那我們就開始囉:

  1. 首先先在button內新增onclick讓這個按鈕按下的當下就能有個函數(function)
    https://ithelp.ithome.com.tw/upload/images/20210904/20140126ZDyV0MuWcC.jpg
    2.然後終於要寫到JavaScript了,首先可以先用這個來知道時間,把他寫在body裡面
<script>
Today = Date();
console.log(Today);
</script>

像是這樣
https://ithelp.ithome.com.tw/upload/images/20210904/20140126WKxTf31NtD.jpg
之後存檔然後開啟index.html,並且打開F12,再點Console
https://ithelp.ithome.com.tw/upload/images/20210904/20140126cAfZE98IJP.jpg
有出現時間了,那麼就繼續
3.先新增一個p段落,然後給定一個ID
<p id="test">時間</p>
4.寫一個函數,讓id是test的HTML標籤改成today

function FirstFunction() {
    document.getElementById("test").innerHTML = Today;
}

完整程式碼是這樣:

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>didiao</title>
    <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css" rel="stylesheet"
        integrity="sha384-KyZXEAg3QhqLMpG8r+8fhAXLRk2vvoC2f3B09zVXn8CA5QIVfZOJ3BCsw2P0p/We" crossorigin="anonymous">
    <link rel="stylesheet" href="style.css">
</head>

<body>
    <h3>hello world</h3>
    <h4 id="id_1">id</h4>
    <h5 class="cl_1">class</h5>
    <p>我是段落</p>
    <a href="https://www.google.com/">google超連結</a>
    <button onclick="FirstFunction()">按鈕</button>
    <p id="test">時間</p>
    <script>
        Today = Date();
        console.log(Today);
        function FirstFunction() {
            document.getElementById("test").innerHTML = Today;
        }
    </script>
    <div class="container">
        <div class="row">
            <div class="col">column 1</div>
            <div class="col">column 2></div>
        </div>
    </div>
</body>
</html>

5.存檔之後開啟index.html會看到這樣:
https://ithelp.ithome.com.tw/upload/images/20210904/20140126sqNxcDsJLg.jpg
按下按鈕就會是這樣:
https://ithelp.ithome.com.tw/upload/images/20210904/20140126eKcSG1Jd9r.jpg
今天就先介紹到這,明天就會介紹JavaScript的框架了!


上一篇
全端入門Day19_前端程式撰寫之JavaScript
下一篇
全端入門Day21_前端程式撰寫之Vue.js
系列文
我要成為全端王!30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言